Get Fixed Deposit Product
GET /api/v{version}/FixedDeposit/products/{productId}
Description
This endpoint retrieves details of a specific fixed deposit product using its product ID. The details provided include the characteristics and terms of the fixed deposit product.
Parameters
- productId (
integer, path, required): The ID of the fixed deposit product. - version (
string, path, required): The version of the API. - Accept-Language (
string, header, optional): Change the default response message language from English (en). Available languages arefranden.
Responses
- 200 OK
- Media type: Controls Accept header.
- Example Value:
{
"productId": 123,
"productName": "Fixed Deposit Product Name",
"interestRate": 5.0,
"term": "12 months",
"minimumDeposit": 1000
}
LANGUAGE
CURL REQUEST
curl --request GET \
--url /api/v{version}/FixedDeposit/products/{productId} \
--header 'accept: application/json' \
--header 'content-type: application/json'
RESPONSE
Click Try It! to start a request and see the response here!